API Reference > @next-core/brick-types > BrickConfInTemplate
BrickConfInTemplate interface
自定义模板渲染的构件配置。
Signature:
export declare type BrickConfInTemplate = Omit<
BrickConf,
"brick" | "slots" | "template" | "params"
> & {
brick: string;
ref?: string;
slots?: SlotsConfInTemplate;
};
Reference: BrickConf, SlotsConfInTemplate