Search


Search something to see results

SinglePropertyType

interface SinglePropertyType {
    typ:
        | "toString"
        | "toLocaleString"
        | "toFixed"
        | "toExponential"
        | "toPrecision"
        | "valueOf";
    val: string
    | number;
}

Index

Properties

typ:
    | "toString"
    | "toLocaleString"
    | "toFixed"
    | "toExponential"
    | "toPrecision"
    | "valueOf"
val: string | number