Interface OrderConfig

interface OrderConfig {
    declineWords: string;
    emptyText: string;
    enabled: boolean;
    excludeUser: string;
    onlyChannelPointFromTwitch: boolean;
    skipConfirm: boolean;
    sound: {
        enabled: boolean;
        file: string;
        volume: number;
    };
    templateString: string;
    templateType: "column" | "row";
    words: string;
}

Properties

declineWords: string
emptyText: string
enabled: boolean
excludeUser: string
onlyChannelPointFromTwitch: boolean
skipConfirm: boolean
sound: {
    enabled: boolean;
    file: string;
    volume: number;
}

Type declaration

  • enabled: boolean
  • file: string
  • volume: number
templateString: string
templateType: "column" | "row"
words: string