11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
import type { ManifestBase } from './models';
|
|
|
|
export interface ManifestTree extends ManifestBase {
|
|
type: 'tree';
|
|
meta: MetaTree;
|
|
}
|
|
|
|
export interface MetaTree {
|
|
repositoryAlias: string;
|
|
}
|