├── .github ├── FUNDING.yml └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── README.md ├── assets └── temp-channels.gif ├── package.json ├── src ├── handlers │ ├── channelDelete.ts │ ├── index.ts │ └── voiceStateUpdate.ts ├── index.ts └── types │ ├── ChildChannelData.ts │ ├── ParentChannelData.ts │ ├── ParentChannelOptions.ts │ └── index.ts ├── tsconfig.json └── tslint.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | **test** 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/README.md -------------------------------------------------------------------------------- /assets/temp-channels.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/assets/temp-channels.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/package.json -------------------------------------------------------------------------------- /src/handlers/channelDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/handlers/channelDelete.ts -------------------------------------------------------------------------------- /src/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/handlers/index.ts -------------------------------------------------------------------------------- /src/handlers/voiceStateUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/handlers/voiceStateUpdate.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/ChildChannelData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/types/ChildChannelData.ts -------------------------------------------------------------------------------- /src/types/ParentChannelData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/types/ParentChannelData.ts -------------------------------------------------------------------------------- /src/types/ParentChannelOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/types/ParentChannelOptions.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Androz2091/discord-temp-channels/HEAD/tslint.json --------------------------------------------------------------------------------