UNPKG

@instructure/canvas-rce

Version:

A component wrapping Canvas's usage of Tinymce

7 lines (6 loc) 314 B
type QueryParameterElement = string | number | boolean | null | undefined | (() => string) | Array<QueryParameterElement> | QueryParameterRecord; export type QueryParameterRecord = { [k: string]: QueryParameterElement; }; export declare function toQueryString(params: QueryParameterRecord): string; export {};