UNPKG

vue-service-model

Version:

Vue.js library for handling REST service requests with caching, aggregation and model definitions

7 lines (5 loc) 166 B
type anyPromise<T> = Promise<T> | T type funcValue<T> = () => anyPromise<T> type LazyValue<T> = funcValue<T> | T export { LazyValue } export default LazyValue