index.d.ts 143 B

123456
  1. /**
  2. * Run update and print output to terminal.
  3. */
  4. declare function updateDb(print?: (str: string) => void): Promise<void>
  5. export = updateDb