Skip to content

Commit e3aef97

Browse files
authored
Merge pull request bcherny#29 from darcyparker/tslintDoubleQuoteError
fix tslint error about double quotes
2 parents ac26a73 + 64bd810 commit e3aef97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JSONSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export namespace JSONSchema {
22

3-
export type SimpleTypes = "array" | "boolean" | "integer" | "null" | "number" | "object" | "string";
3+
export type SimpleTypes = 'array' | 'boolean' | 'integer' | 'null' | 'number' | 'object' | 'string';
44
/** Core schema meta-schema */
55
export type HttpJsonSchemaOrgDraft04Schema = {
66
id?: string;

0 commit comments

Comments
 (0)