mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
12 lines
396 B
TypeScript
12 lines
396 B
TypeScript
// Type definitions for prompt-sync-history 1.0.1
|
|
// Project: https://github.com/davidmarkclements/prompt-sync-history
|
|
// Definitions by: TANAKA Koichi <https://github.com/MugeSo>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import {History} from 'prompt-sync';
|
|
|
|
declare namespace history {}
|
|
declare function history(file?:string, max?:number): History;
|
|
|
|
export = history;
|