UNPKG

vue-function-api-sd

Version:

Provide logic composition capabilities for Vue.

13 lines (12 loc) 330 B
import AbstractWrapper from './AbstractWrapper'; interface ComputedInternal<T> { read(): T; write?(x: T): void; } export default class ComputedWrapper<V> extends AbstractWrapper<V> { private _internal; constructor(internal: ComputedInternal<V>); value: V; exposeToDevtool(): void; } export {};