npm install --save @types/json-to-go
This package contains type definitions for json-to-go (https://github.com/kduprey/json-to-go/).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-to-go.
interface JsonToGoResult {
go: string;
error: string;
}
declare function jsonToGo(
json: string,
typename: string,
flatten: boolean,
example: boolean,
allOmitEmpty: boolean,
): JsonToGoResult;
declare function jsonToGo(json: string, typename: string, flatten: boolean, example: boolean): JsonToGoResult;
declare function jsonToGo(json: string, typename: string, flatten: boolean): JsonToGoResult;
declare function jsonToGo(json: string, typename: string): JsonToGoResult;
export = jsonToGo;
- Last updated: Thu, 01 Aug 2024 15:07:24 GMT
- Dependencies: none
These definitions were written by LemonNeko.