vigiles API reference
    Preparing search index...

    Interface InlineProvider<Name>

    An INLINE one-off provider: a command declared right in needs (no registered file), run by the trusted runtime, its stdout becoming e.ctx[name] (a string). dangerous marks the loud escape — a command not provably read-only. Built via provide (read-only) or dangerously (acknowledged).

    interface InlineProvider<Name extends string = string> {
        dangerous: boolean;
        kind: "inline";
        name: Name;
        run: string;
    }

    Type Parameters

    • Name extends string = string
    Index

    Properties

    Properties

    dangerous: boolean
    kind: "inline"
    name: Name
    run: string