Greasy Fork is available in English.
try to take over the world!
Convert json to golang, typescript, python3 type declaration.
1、Install tampermonkey. 2、Open browser console. 3、In the console, following commands are supported:
input:
document.jsonToGo('{"name":"user","age":18}')
output:
type AutoGenerated struct {
Name string `json:"name"`
Age int `json:"age"`
}
input:
document.jsonToTs('{"name":"user","age":18}')
output:
{
name: string,
age: number
}