Ignore loader property from the base ManifestWithLoader

This commit is contained in:
Warren Buckley
2023-03-06 16:02:46 +00:00
parent 217321d47c
commit 2d970e8502

View File

@@ -93,6 +93,10 @@ export interface ManifestBase {
}
export interface ManifestWithLoader<LoaderReturnType> extends ManifestBase {
/**
* Ignore this property when serializing to JSON Schema
* @ignore
*/
loader?: () => Promise<LoaderReturnType>;
}