Variable pluginRuntimeSectionSchemaConst

pluginRuntimeSectionSchema: ZodObject<{
    assets: ZodOptional<ZodArray<ZodString, "many">>;
    entry: ZodObject<{
        core: ZodString;
    }, "strip", ZodTypeAny, {
        core: string;
    }, {
        core: string;
    }>;
}, "strip", ZodTypeAny, {
    assets?: string[];
    entry: { core: string; };
}, {
    assets?: string[];
    entry: { core: string; };
}> = ...

Type declaration

  • assets: ZodOptional<ZodArray<ZodString, "many">>
  • entry: ZodObject<{
        core: ZodString;
    }, "strip", ZodTypeAny, {
        core: string;
    }, {
        core: string;
    }>

Type declaration

  • Optional assets?: string[]
  • entry: { core: string; }

Type declaration

  • Optional assets?: string[]
  • entry: { core: string; }

Generated using TypeDoc