Skip to content

Commit

Permalink
removed 'private' option, classes cannot be private lol
Browse files Browse the repository at this point in the history
  • Loading branch information
somedeveloper00 committed May 19, 2024
1 parent 6c3f3f5 commit a50839a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const DEST_PATH = 'snippets/snippets.json';
export const ISSUES_URL = 'https://github.com/kleber-swf/vscode-unity-code-snippets/issues';

export type IndentationStyle = 'kr' | 'allman';
export type ClassAccessibilityLevel = 'public' |'private' | 'none';
export type ClassAccessibilityLevel = 'public' |'internal' | 'none';

export type ReplaceType = 'PRIVATE' | 'CLASS_ACCESSIBILITY_LEVEL' | 'LINE_BREAK' | 'TAB';
export type Replaces = Record<ReplaceType, string>;
Expand Down

0 comments on commit a50839a

Please sign in to comment.