UNPKG

@umbraco/json-models-builders

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