CoreMedia CKEditor 5 Plugins
    Preparing search index...

    Providers for defaults. Only called, when given properties are unset. Providers may access the full original configuration object (for example, to derive properties from other properties), despite the given property, as this is unset when being called.

    interface MutablePropertiesDefaultProviders<
        T extends MutablePropertiesConfig = MutablePropertiesConfig,
    > {
        blob?: BlobTypeConfig | ((input: Omit<T, "blob">) => BlobTypeConfig);
        editing?: boolean | ((input: Omit<T, "editing">) => boolean);
        localeName?: string | ((input: Omit<T, "localeName">) => string);
        name?: string | ((input: Omit<T, "name">) => string);
        readable?: boolean | ((input: Omit<T, "readable">) => boolean);
        siteName?: string | ((input: Omit<T, "siteName">) => string);
    }

    Type Parameters

    Index

    Properties

    blob?: BlobTypeConfig | ((input: Omit<T, "blob">) => BlobTypeConfig)

    Provider for blob property value (or just provided as static value).

    editing?: boolean | ((input: Omit<T, "editing">) => boolean)

    Provider for default editing state (or just provided as static value).

    localeName?: string | ((input: Omit<T, "localeName">) => string)

    Provider for default site name (or just providing a static site name).

    name?: string | ((input: Omit<T, "name">) => string)

    Provider for default name (or just providing a static name).

    readable?: boolean | ((input: Omit<T, "readable">) => boolean)

    Provider for default readable state (or just provided as static value).

    siteName?: string | ((input: Omit<T, "siteName">) => string)

    Provider for default site name (or just providing a static site name).