Interface ClassPreset<R, O>

interface ClassPreset<R, O> {
    additionalContent?: ((args) => string | Promise<string>);
    ctor?: ((args) => string | Promise<string>);
    getter?: ((args) => string | Promise<string>);
    property?: ((args) => string | Promise<string>);
    self?: ((args) => string | Promise<string>);
    setter?: ((args) => string | Promise<string>);
}

Type Parameters

Hierarchy (view full)

Properties

additionalContent?: ((args) => string | Promise<string>)

Type declaration

ctor?: ((args) => string | Promise<string>)

Type declaration

getter?: ((args) => string | Promise<string>)

Type declaration

property?: ((args) => string | Promise<string>)

Type declaration

self?: ((args) => string | Promise<string>)

Type declaration

setter?: ((args) => string | Promise<string>)

Type declaration