@magic-xpa/utils
Version:
magic utils package
15 lines (14 loc) • 874 B
TypeScript
import { StorageAttribute } from "./enums";
export declare class StorageAttributeCheck {
static isTheSameType(type1: StorageAttribute, type2: StorageAttribute): boolean;
static isTypeBlob(type: StorageAttribute): boolean;
static isTypeAlpha(type: StorageAttribute): boolean;
static isTypeNumeric(type: StorageAttribute): boolean;
static isTypeLogical(type: StorageAttribute): boolean;
static isTypeDotNet(type: StorageAttribute): boolean;
static IsTypeAlphaOrUnicode(type: StorageAttribute): boolean;
static StorageFldAlphaOrUnicode(type1: StorageAttribute, type2: StorageAttribute): boolean;
static StorageFldAlphaUnicodeOrBlob(type1: StorageAttribute, type2: StorageAttribute): boolean;
static IsTypeCompatibile(sourceAttribute: StorageAttribute, destinationAttribute: StorageAttribute): boolean;
constructor();
}