@storm-stack/types
Version:
⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.
8 lines (7 loc) • 323 B
TypeScript
/**
* Determine if the type is string and is not empty (length greater than zero)
*
* @param value - The value to type check
* @returns An indicator specifying if the value provided is of type `string` and length greater than zero
*/
export declare const isSetString: (value: unknown) => value is NonNullable<string>;