refactor: rename .d.ts files to .ts

This commit is contained in:
Wieland Schöbl
2021-08-25 13:16:21 +02:00
parent 20f68ed581
commit aa0ba51a34
12 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ import {Definition} from 'ts-json-schema-generator';
/** /**
* A schema with definitions * A schema with definitions
*/ */
interface SchemaWithDefinitions extends JSONSchema { export interface SchemaWithDefinitions extends JSONSchema {
/** /**
* Definitions of the schema * Definitions of the schema
*/ */

View File

@@ -14,7 +14,7 @@
*/ */
import {LightweightFile} from '../../src/easy-ast/types/lightweight-project'; import {LightweightFile} from '../../src/easy-ast/types/lightweight-project';
interface EasyAstSpecType { export interface EasyAstSpecType {
testName: string; testName: string;
expected: LightweightFile; expected: LightweightFile;
} }