Skip to content

Commit f4fc810

Browse files
committed
more jsdoc, microsoft#85753
1 parent 7d5cd0d commit f4fc810

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/vs/vscode.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5716,7 +5716,7 @@ declare module 'vscode' {
57165716

57175717
/**
57185718
* Enumeration of file types. The types `File` and `Directory` can also be
5719-
* a symbolic links, in that use `FileType.File | FileType.SymbolicLink` and
5719+
* a symbolic links, in that case use `FileType.File | FileType.SymbolicLink` and
57205720
* `FileType.Directory | FileType.SymbolicLink`.
57215721
*/
57225722
export enum FileType {
@@ -5745,6 +5745,8 @@ declare module 'vscode' {
57455745
/**
57465746
* The type of the file, e.g. is a regular file, a directory, or symbolic link
57475747
* to a file.
5748+
*
5749+
* *Note:* This value might be a bitmask, e.g. `FileType.File | FileType.SymbolicLink`.
57485750
*/
57495751
type: FileType;
57505752
/**

0 commit comments

Comments
 (0)