/** * 帕斯卡三角 * @param numRows * @returns */ export {}; declare global { interface Math { pascal(numRows: number): number; } }