mirror of https://github.com/penpot/penpot.git
18 lines
379 B
TypeScript
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[];
|
|
};
|
|
}
|