export interface ResolvedFunctions { beforeAll: { namespace: string, fqn: string, func: (...params) => (void | Promise), args: any[] }[]; afterAll: { namespace: string, fqn: string, func: (...params) => (void | Promise), args: any[] }[]; functions: ({ namespace: string, func: (...params) => (void | Promise), args: any[] })[]; }