mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-26 00:21:41 +08:00
rename to match the I afix
This commit is contained in:
@@ -1,27 +1,27 @@
|
||||
/// <reference path="ng-grid.d.ts" />
|
||||
|
||||
var options1: ngGrid.GridOptions = {
|
||||
var options1: ngGrid.IGridOptions = {
|
||||
data: [{ 'Name': 'Bob' }, { 'Name': 'Jane' }]
|
||||
};
|
||||
|
||||
var options2: ngGrid.GridOptions = {
|
||||
var options2: ngGrid.IGridOptions = {
|
||||
afterSelectionChange: () => { },
|
||||
beforeSelectionChange: () => { },
|
||||
dataUpdated: () => { }
|
||||
};
|
||||
|
||||
var options3: ngGrid.GridOptions = {
|
||||
var options3: ngGrid.IGridOptions = {
|
||||
columnDefs: [
|
||||
{ field: 'name', displayName: 'Name' },
|
||||
{ field: 'age', displayName: 'Age' }
|
||||
]
|
||||
};
|
||||
|
||||
var options4: ngGrid.GridOptions = {
|
||||
var options4: ngGrid.IGridOptions = {
|
||||
pagingOptions: {
|
||||
pageSizes: [1, 2, 3, 4],
|
||||
pageSize: 2,
|
||||
totalServerItems: 100,
|
||||
currentPage: 1
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user