mirror of
https://github.com/actions-rs/toolchain.git
synced 2024-11-15 05:56:33 +02:00
9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
declare module "fast-toml" {
|
|
export function parse<R extends Record<string, unknown>>(input: string): R;
|
|
export function parseFile<R extends Record<string, unknown>>(
|
|
file: string
|
|
): Promise<R>;
|
|
export function parseFileSync<R extends Record<string, unknown>>(
|
|
file: string
|
|
): R;
|
|
}
|