import * as check from "../../../../generated/sync/check/dictionary-of/string"; export function isDictionaryOfString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfString(mixed) === undefined; } export function isDictionaryOfMinLength (mixed : any, min : number) : mixed is { [key : string] : string } { return check.checkDictionaryOfMinLength(mixed, min) === undefined; } export function isDictionaryOfMaxLength (mixed : any, max : number) : mixed is { [key : string] : string } { return check.checkDictionaryOfMaxLength(mixed, max) === undefined; } export function isDictionaryOfLength (mixed : any, args : { min? : number, max? : number }) : mixed is { [key : string] : string } { return check.checkDictionaryOfLength(mixed, args) === undefined; } export function isDictionaryOfNonEmpty (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfNonEmpty(mixed) === undefined; } export function isDictionaryOfContains (mixed : any, x : string) : mixed is { [key : string] : string } { return check.checkDictionaryOfContains(mixed, x) === undefined; } export function isDictionaryOfNoDuplicate (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfNoDuplicate(mixed) === undefined; } export function isDictionaryOfNotAllWhitespace (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfNotAllWhitespace(mixed) === undefined; } export function isDictionaryOfNonEmptyAndNotAllWhitespace (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfNonEmptyAndNotAllWhitespace(mixed) === undefined; } export function isDictionaryOfMatch (mixed : any, regex : RegExp) : mixed is { [key : string] : string } { return check.checkDictionaryOfMatch(mixed, regex) === undefined; } export function isDictionaryOfEmail (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfEmail(mixed) === undefined; } export function isDictionaryOfNotOneOf (mixed : any, arr : T[]) : mixed is { [key : string] : string } { return check.checkDictionaryOfNotOneOf(mixed, arr) === undefined; } export function isDictionaryOfBase64 (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfBase64(mixed) === undefined; } export function isDictionaryOfJson (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfJson(mixed) === undefined; }