import { List } from '../List/List'; /** * Alias to create a [[Function]] * @param P parameters * @param R return type * @returns [[Function]] * @example * ```ts * import {F} from 'ts-toolbelt' * * type test0 = F.Function<[string, number], boolean> * /// (args_0: string, args_1: number) => boolean * ``` */ export declare type Function

= (...args: P) => R;