mirror of
https://github.com/type-challenges/type-challenges.git
synced 2025-12-08 19:06:13 +00:00
5 lines
73 B
TypeScript
5 lines
73 B
TypeScript
type Chainable = {
|
|
option(key: string, value: any): any
|
|
get(): any
|
|
}
|