import { BacklogItemTemplate } from ".."; import { RepoItem } from "../repo"; import { RepoTemplate } from "../template"; export interface PlaybookService { getBacklogItemTemplates: () => Promise; getTemplates: () => Promise; getRepoItem: (templateName: string, includeContent?: boolean) => Promise; downloadTemplate: (localRelativePath: string, template: RepoTemplate) => Promise; }