Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
JadeMin committed Apr 1, 2023
1 parent ca6afd6 commit ef33a8f
Show file tree
Hide file tree
Showing 9 changed files with 7,336 additions and 4,476 deletions.
9 changes: 9 additions & 0 deletions @types/extensions.d.ts
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;
34 changes: 17 additions & 17 deletions manifest.json
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"
}
}
Loading

0 comments on commit ef33a8f

Please sign in to comment.