17 lines
No EOL
473 B
TypeScript
17 lines
No EOL
473 B
TypeScript
import {ChannelId} from "../types/DiscordTypes";
|
|
import {Nullable} from "../types/Nullable";
|
|
|
|
export type RuntimeGroupConfiguration = {
|
|
channels: Nullable<ChannelRuntimeGroupConfiguration>,
|
|
locale: Intl.Locale,
|
|
permissions: PermissionRuntimeGroupConfiguration
|
|
};
|
|
|
|
export type ChannelRuntimeGroupConfiguration = {
|
|
newPlaydates: ChannelId,
|
|
playdateReminders: ChannelId
|
|
}
|
|
|
|
export type PermissionRuntimeGroupConfiguration = {
|
|
allowMemberManagingPlaydates: boolean
|
|
} |