13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
/**
|
|
Return a JSON representation of a file
|
|
|
|
@param {File} file
|
|
@return {Object}
|
|
*/
|
|
declare function encodeFileToJson(file: any): {
|
|
path: any;
|
|
mtime: any;
|
|
type: any;
|
|
};
|
|
export default encodeFileToJson;
|
|
//# sourceMappingURL=encodeFile.d.ts.map
|