nunof07/smalltypes

View on GitHub
src/main/scalar/Scalar.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Scalar.
 */
export interface Scalar<T> {
    /**
     * Type determinant.
     */
    isScalar(): true;

    /**
     * Get the value.
     */
    value(): T;
}