Documentation - v0.27.3
    Preparing search index...

    Interface TlFullSchema

    A full TL schema information

    Basically an index over []

    interface TlFullSchema {
        classes: Record<string, TlEntry>;
        entries: TlEntry[];
        methods: Record<string, TlEntry>;
        unions: Record<string, TlUnion>;
    }
    Index

    Properties

    classes: Record<string, TlEntry>

    Index of classes by name

    entries: TlEntry[]

    Entries in the schema

    methods: Record<string, TlEntry>

    Index of methods by name

    unions: Record<string, TlUnion>

    Index of unions by name