UNPKG

150 BTypeScriptView Raw
1import { Property } from "./observable";
2/**
3 Creates a constant property with value `x`.
4 */
5export default function constant<V>(x: V): Property<V>;