Skip to main content
Module

x/simple_utility/src/web.d.ts

A handy utility collection.
Go to Latest
File
/*** Possible types of JSON.*/export type JsonStruct = string | number | boolean | null | JsonStruct[] | {[key in string]: JsonStruct};
/*** Possible input types for `URLSearchParams`.*/export type QueryInit = Exclude<HeadersInit, Headers> | URLSearchParams;
/*** "id" and "password" pair.*/export interface IdCredential{ id: string; pw: string;}