UNPKG

@umbraco/json-models-builders

Version:
20 lines (19 loc) 522 B
export declare class BaseContentDataValueBuilder { alias: string; culture: string; editorAlias: string; segment: string; value: string; withAlias(alias: string): this; withCulture(culture: string): this; withEditorAlias(editorAlias: string): this; withSegment(segment: string): this; withValue(value: string): this; getValue(): { alias: string; culture: string | null; editorAlias: string; segment: string | null; value: string; }; }