2016-05-23 92 views

回答

0

如果您檢查分型文件,您可以看到基本LoDashStatic界面,你可以擴展:

import old = require('lodash') 

interface LodashExt extends old.LoDashStatic { 
    nth(n: Array<any>, i: number) : LodashExt 
    // . . . 
} 

var _ = <LodashExt>old 

_.add(1, 2) 

_.nth(['a', 'b', 'c', 'd'], 2) 

這應該是足夠簡單的案件。你可能想把上面的聲明放到一個模塊中,然後導出新的_值。

+0

現在我正在這樣做。但我希望沒有新變量。 – wishmaster35