skysync-cli
Version:
SkySync Command Line Interface
10 lines (9 loc) • 321 B
TypeScript
import { PromptAttribute, PromptAttributes } from '.';
import { IEntityIdentifier } from './base';
export interface Extension extends IEntityIdentifier<string> {
description?: string;
version?: string;
disabled?: boolean;
configuration?: PromptAttribute[] | PromptAttributes;
url?: string;
}