chore: move to entityRef

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-02-17 09:59:41 +01:00
parent f25fd16490
commit a8c29cc99a
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -28,12 +28,13 @@ export type TemplateMetadata = {
};
/**
* Information about a template that is stored on a task specification
* Information about a template that is stored on a task specification.
* Includes a stringified entityRef, and the baseUrl which is usually the relative path of the template definition
*
* @public
*/
export type TemplateInfo = {
name: string;
entityRef: string;
baseUrl?: string;
};