Type Alias StylerConfigBeta

StylerConfig: StylerOption & {
    description: string;
    destroy?: (() => Promise<void>);
    init: StylerProducer;
    name: string;
}

Type representing the configuration for a styler.

Type declaration

  • Betadescription: string

    The description of the styler configuration.

  • Optionaldestroy?: (() => Promise<void>)

    The optional destroy function for the styler.

      • (): Promise<void>
      • Returns Promise<void>

  • Betainit: StylerProducer

    The initialization function for the styler.

  • Betaname: string

    The name of the styler configuration.