MCPcopy Index your code
hub / github.com/glideapps/quicktype / Language

Interface Language

test/languages.ts:5–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { RendererOptions } from "../dist";
4
5export interface Language {
6 name: string;
7 base: string;
8 setupCommand?: string;
9 compileCommand?: string;
10 runCommand(sample: string): string;
11 diffViaSchema: boolean;
12 allowMissingNull: boolean;
13 output: string;
14 topLevel: string;
15 skipJSON: string[];
16 skipSchema: string[];
17 rendererOptions: RendererOptions;
18 quickTestRendererOptions: RendererOptions[];
19}
20
21export const CSharpLanguage: Language = {
22 name: "csharp",

Callers 4

testMethod · 0.80
testMethod · 0.80
testMethod · 0.80
testMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…