declare global { interface BigInt { /** * Returns the total number of minutes of the `Duration`. * * @example * ```typescript * (2).minutes.asMinutes(); // => 2 * ((2).minutes + (3).seconds).asMinutes(); // => 2.05 * ``` */ asMinutes(): number; } } export {}; //# sourceMappingURL=asMinutes.d.ts.map