@frontitude/cli
Version:
The Frontitude CLI enables product teams to integrate their code with Frontitude (frontitude.com), thus creating a single source of truth for their product copy, from design to development.
11 lines (10 loc) • 353 B
TypeScript
export default class PropertiesAdapter {
instance: any;
filePath: any;
constructor(filePath: string);
getAllAttributes(): any;
getAttr(attrName: string): Promise<any>;
setAttrAndSave(attrName: string, attrValue: string): Promise<void>;
setAttr(attrName: string, attrValue: string): any;
save(): Promise<any>;
}