UNPKG

@plone/types

Version:

Plone's Types Package

5 lines (3 loc) 204 B
// export type Utility = Record<string, { method: (args: any) => any }>; export type Utility = Record<string, { method: (...args: any[]) => any }>; export type UtilitiesConfig = Record<string, Utility>;