Move struct out of model folder.

This commit is contained in:
Daniel Scalzi
2020-09-12 20:14:18 -04:00
parent cd7b4d8abc
commit 1a19df0e93
25 changed files with 194 additions and 269 deletions

View File

@@ -0,0 +1,7 @@
import { FileStructure } from '../FileStructure'
export interface SpecModelStructure<T> extends FileStructure {
getSpecModel(): Promise<T>
}