iink-ts - v4.0.0
    Preparing search index...

    Interface SymbolRegistryClass

    import { symbolRegistry } from "iink-ts"
    symbolRegistry.register(new StickyNoteUtil())
    interface SymbolRegistryClass {
        getUtil<T extends TBaseSymbol>(type: string): SymbolUtil<T> | undefined;
        has(type: string): boolean;
        register<T extends TBaseSymbol>(util: SymbolUtil<T>): this;
    }
    Index
    • Parameters

      • type: string

      Returns boolean