mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
import * as resolver from "table-resolver";
|
|
|
|
const result = resolver.resolve({
|
|
columns: [{
|
|
id: "testid1",
|
|
title: "test title 1",
|
|
}, {
|
|
id: "testid2",
|
|
title: "test title 2"
|
|
}],
|
|
method: (item) => item.column
|
|
});
|
|
|
|
export default result;
|