Skip to main content
Module

x/libclang/mod.ts>AvailabilityEntry

Deno FFI bindings for libclang
Go to Latest
interface AvailabilityEntry
import { type AvailabilityEntry } from "https://deno.land/x/libclang@1.0.0-beta.8/mod.ts";

Describes the availability of a given entity on a particular platform, e.g., a particular class might only be available on Mac OS 10.7 or newer.

Properties

deprecated: SemVerString

The version number in which this entity was deprecated (but is still available).

introduced: SemVerString

The version number in which this entity was introduced.

message: string

An optional message to provide to a user of this API, e.g., to suggest replacement APIs.

obsoleted: SemVerString

The version number in which this entity was obsoleted, and therefore is no longer available.

platform: string

A string that describes the platform for which this structure provides availability information.

Possible values are "ios" or "macos".

unavailable: boolean

Whether the entity is unconditionally unavailable on this platform.