UNPKG

mattermost-redux

Version:

Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client

7 lines (6 loc) 366 B
import { Bot } from "../../types/bots"; import { GlobalState } from "../../types/store"; import { Dictionary } from "../../types/utilities"; export declare const ExternalBotAccountNames: string[]; export declare function getBotAccounts(state: GlobalState): Dictionary<Bot>; export declare const getExternalBotAccounts: (state: GlobalState) => Dictionary<Bot>;