generated from replugged-org/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
JadeMin
committed
Apr 1, 2023
1 parent
ca6afd6
commit ef33a8f
Showing
9 changed files
with
7,336 additions
and
4,476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
declare type ToCamelCase<S extends string> = | ||
S extends `${infer T}_${infer U}`? | ||
`${T}${Capitalize<ToCamelCase<U>>}` : S; | ||
|
||
export declare type ToCamel<Type> = | ||
Type extends object? | ||
{ | ||
[Key in keyof Type as ToCamelCase<Key & string>]: ToCamel<Type[Key]> | ||
} : Type; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
"id": "dev.replugged.PluginTemplate", | ||
"name": "Plugin Template", | ||
"description": "A plugin template", | ||
"author": { | ||
"name": "replugged", | ||
"discordID": "1000992611840049192", | ||
"github": "replugged-org" | ||
}, | ||
"version": "1.0.0", | ||
"updater": { | ||
"type": "github", | ||
"id": "replugged-org/plugin-template" | ||
}, | ||
"license": "MIT", | ||
"type": "replugged-plugin", | ||
"renderer": "src/index.ts" | ||
} | ||
"type": "replugged-plugin", | ||
"renderer": "src/index.ts", | ||
"id": "replugged.JadeMin.NitroBypass", | ||
"name": "NitroBypass", | ||
"description": "니트로 바이패수", | ||
"author": { | ||
"name": "KlartNET", | ||
"discordID": "840594543291269120", | ||
"github": "JadeMin-Replugged" | ||
}, | ||
"version": "0.0.0", | ||
"updater": { | ||
"type": "github", | ||
"id": "JadeMin-Replugged/NitroBypass" | ||
} | ||
} |
Oops, something went wrong.