@dallaylaen/ski-interpreter
    Preparing search index...

    Variable extrasConst

    extras: {
        checkFormatOptions: (
            raw: unknown,
        ) => { value: FormatOptions } | { error: Record<string, string> };
        declare: (expr: Expr, env?: Record<string, Named>) => string;
        deepFormat: (obj: any, options?: FormatOptions) => any;
        equiv: (e1: Expr, e2: Expr, options?: {}) => EquivResult;
        search: (
            seed: Expr[],
            options: SearchOptions,
            predicate: SearchCallback,
        ) => SearchResult;
        toposort: (
            options: {
                allow?: Record<string, Named>;
                env?: Record<string, Named>;
                list?: Expr | Expr[];
            },
        ) => ToposortResult;
    } = ...

    Type Declaration