You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
442 B
25 lines
442 B
/* tslint:disable */ |
|
/* eslint-disable */ |
|
/** |
|
* @param {string} contents |
|
* @returns {any} |
|
*/ |
|
export function parse_to_json(contents: string): any; |
|
/** |
|
* @returns {string} |
|
*/ |
|
export function version(): string; |
|
/** |
|
* @param {Uint8Array} contents |
|
* @returns {Uint32Array} |
|
*/ |
|
export function parse_to_uint32array(contents: Uint8Array): Uint32Array; |
|
/** |
|
*/ |
|
export enum TokenTypes { |
|
Key, |
|
Value, |
|
Section, |
|
CommentIndicator, |
|
CommentValue, |
|
}
|
|
|