weasel API - v0.8.0
    Preparing search index...

    Interface CustomLayerEntry

    Custom layer entry — any key not in STANDARD_SLOTS. The presence of .layer discriminates this from a slot config.

    interface CustomLayerEntry {
        after?: string & {} | StandardSlotName;
        before?: string & {} | StandardSlotName;
        layer: RenderLayer<unknown>;
    }
    Index

    Properties

    Properties

    after?: string & {} | StandardSlotName

    Insert immediately after the named standard slot or another custom-layer key.

    before?: string & {} | StandardSlotName

    Insert immediately before the named standard slot or another custom-layer key.

    layer: RenderLayer<unknown>