UNPKG

@umbraco/json-models-builders

Version:
18 lines (17 loc) 498 B
import { ElementBuilder } from './elementBuilder'; export declare class ElementVariantBuilder { parentBuilder: ElementBuilder; culture: string; segment: string; name: string; constructor(parentBuilder: ElementBuilder); withCulture(culture: string): this; withSegment(segment: string): this; withName(name: string): this; done(): ElementBuilder; build(): { culture: string | null; segment: string | null; name: string | null; }; }