import * as check from "../../../../generated/sync/check/array-of/string"; export function isArrayOfString (mixed : any) : mixed is (string)[] { return check.checkArrayOfString(mixed) === undefined; } export function isArrayOfMinLength (mixed : any, min : number) : mixed is (string)[] { return check.checkArrayOfMinLength(mixed, min) === undefined; } export function isArrayOfMaxLength (mixed : any, max : number) : mixed is (string)[] { return check.checkArrayOfMaxLength(mixed, max) === undefined; } export function isArrayOfLength (mixed : any, args : { min? : number, max? : number }) : mixed is (string)[] { return check.checkArrayOfLength(mixed, args) === undefined; } export function isArrayOfNonEmpty (mixed : any) : mixed is (string)[] { return check.checkArrayOfNonEmpty(mixed) === undefined; } export function isArrayOfContains (mixed : any, x : string) : mixed is (string)[] { return check.checkArrayOfContains(mixed, x) === undefined; } export function isArrayOfNoDuplicate (mixed : any) : mixed is (string)[] { return check.checkArrayOfNoDuplicate(mixed) === undefined; } export function isArrayOfNotAllWhitespace (mixed : any) : mixed is (string)[] { return check.checkArrayOfNotAllWhitespace(mixed) === undefined; } export function isArrayOfNonEmptyAndNotAllWhitespace (mixed : any) : mixed is (string)[] { return check.checkArrayOfNonEmptyAndNotAllWhitespace(mixed) === undefined; } export function isArrayOfMatch (mixed : any, regex : RegExp) : mixed is (string)[] { return check.checkArrayOfMatch(mixed, regex) === undefined; } export function isArrayOfEmail (mixed : any) : mixed is (string)[] { return check.checkArrayOfEmail(mixed) === undefined; } export function isArrayOfNotOneOf (mixed : any, arr : T[]) : mixed is (string)[] { return check.checkArrayOfNotOneOf(mixed, arr) === undefined; } export function isArrayOfBase64 (mixed : any) : mixed is (string)[] { return check.checkArrayOfBase64(mixed) === undefined; } export function isArrayOfJson (mixed : any) : mixed is (string)[] { return check.checkArrayOfJson(mixed) === undefined; }