mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-25 01:41:05 -05:00
Made type that represents access modifier
This commit is contained in:
parent
31402598d4
commit
71dd0983cb
1 changed files with 4 additions and 0 deletions
4
src/utils/typescript/typescript-access-modifier.ts
Normal file
4
src/utils/typescript/typescript-access-modifier.ts
Normal file
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Represents the access modifier of a TypeScript member.
|
||||
*/
|
||||
export type TypeScriptAccessModifier = "public" | "private" | "protected";
|
Loading…
Reference in a new issue