penpot/plugins/apps/e2e/src/models/file-rpc.model.ts
Andrey Antukh ec1af4ad96 🎉 Import penpot-plugins repository
As commit 819a549e4928d2b1fa98e52bee82d59aec0f70d8
2025-12-30 14:56:15 +01:00

18 lines
379 B
TypeScript

export interface FileRpc {
'~:name': string;
'~:revn': number;
'~:id': string;
'~:is-shared': boolean;
'~:version': number;
'~:project-id': string;
'~:data': {
'~:pages': string[];
'~:objects': string[];
'~:styles': string[];
'~:components': string[];
'~:styles-v2': string[];
'~:components-v2': string[];
'~:features': string[];
};
}