UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

16 lines (15 loc) 411 B
import { Connection } from './Connection.js'; import { EntryPhase } from './EntryRow.js'; import { Realm } from './pages/Realm.js'; export interface PreviewUpdate { entryId: string; phase: EntryPhase; update: string; } export interface ResolveDefaults { realm?: Realm; preview?: PreviewUpdate; } export interface Resolver { resolve(params: Connection.ResolveParams): Promise<unknown>; }