Move ByteOrderMark to services

This commit is contained in:
Mohamed Hegazy 2014-07-23 18:46:11 -07:00
parent 5777320d27
commit 87763db409

View file

@ -80,6 +80,13 @@ module TypeScript {
Declaration Declaration
} }
export enum ByteOrderMark {
None = 0,
Utf8 = 1,
Utf16BigEndian = 2,
Utf16LittleEndian = 3,
}
export class OutputFile { export class OutputFile {
constructor(public name: string, constructor(public name: string,
public writeByteOrderMark: boolean, public writeByteOrderMark: boolean,