@umbraco/json-models-builders
Version:
Builders and models for Umbraco Sites
20 lines (19 loc) • 522 B
TypeScript
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;
};
}