UNPKG

ccs-mongodb-addon

Version:

12 lines (9 loc) 218 B
export interface funcResponse<T = any> { status: 'OK' | 'ERROR'; data?: T; error?: string; } export const authFields = [ 'uri' ] as const export type authFields = typeof authFields[number]