Interface IStringStatistics

interface IStringStatistics {
    count: number;
    missing: number;
    topN: readonly {
        count: number;
        value: string;
    }[];
    unique: number;
}

Properties

count: number
missing: number
topN: readonly {
    count: number;
    value: string;
}[]
unique: number