@awayjs/core
Version:
AwayJS core classes
18 lines • 448 B
TypeScript
/**
* An enumeration providing values to describe the data format of parsed data.
*/
export declare class ParserDataFormat {
/**
* Describes the format of a binary file.
*/
static BINARY: string;
/**
* Describes the format of a plain text file.
*/
static PLAIN_TEXT: string;
/**
* Describes the format of an image file
*/
static IMAGE: string;
}
//# sourceMappingURL=ParserDataFormat.d.ts.map