Interface TagImplOptions

interface TagImplOptions {
    parse?: ((this: Tag & TagImplOptions, token: TagToken, remainingTokens: TopLevelToken[]) => void);
    render: ((this: Tag & TagImplOptions, ctx: Context, emitter: Emitter, hash: Record<string, any>) => unknown);
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

parse?: ((this: Tag & TagImplOptions, token: TagToken, remainingTokens: TopLevelToken[]) => void)
render: ((this: Tag & TagImplOptions, ctx: Context, emitter: Emitter, hash: Record<string, any>) => unknown)