feat(string-prompt): Adds string prompt to menu item
This commit is contained in:
parent
1d73ee8a78
commit
5c7c9c9f87
6 changed files with 164 additions and 26 deletions
7
source/Groups/RuntimeGroupConfiguration.d.ts
vendored
7
source/Groups/RuntimeGroupConfiguration.d.ts
vendored
|
|
@ -4,7 +4,8 @@ import {Nullable} from "../types/Nullable";
|
|||
export type RuntimeGroupConfiguration = {
|
||||
channels: Nullable<ChannelRuntimeGroupConfiguration>,
|
||||
locale: Intl.Locale,
|
||||
permissions: PermissionRuntimeGroupConfiguration
|
||||
permissions: PermissionRuntimeGroupConfiguration,
|
||||
calendar: CalendarRuntimeGroupConfiguration
|
||||
};
|
||||
|
||||
export type ChannelRuntimeGroupConfiguration = {
|
||||
|
|
@ -14,4 +15,8 @@ export type ChannelRuntimeGroupConfiguration = {
|
|||
|
||||
export type PermissionRuntimeGroupConfiguration = {
|
||||
allowMemberManagingPlaydates: boolean
|
||||
}
|
||||
|
||||
export type CalendarRuntimeGroupConfiguration = {
|
||||
title: null|string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue