
* Basic functions create tag and create execution feature * Detailed function support, create tag still broken * create tag and pick folder * edit changelog and bump extension version * fix linting * function tag creation * Create function tags * Fix linting
6 lines
151 B
TypeScript
6 lines
151 B
TypeScript
import { Progress } from 'vscode';
|
|
|
|
export type ProgressMessage = Progress<{
|
|
message?: string | undefined;
|
|
increment?: number | undefined;
|
|
}>;
|