You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
291 B

  1. import { Status as ScmStatus } from '../@types/vscode.git.d.ts';
  2. import { ScmResourceGroupType } from '../@types/vscode.git.resources.enums';
  3. export interface ScmResource extends SourceControlResourceState {
  4. readonly resourceGroupType?: ScmResourceGroupType;
  5. readonly type?: ScmStatus;
  6. }