mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
// Type definitions for caseless 0.12
|
|
// Project: https://github.com/mikeal/caseless
|
|
// Definitions by: downace <https://github.com/downace>
|
|
// Matt R. Wilson <https://github.com/mastermatt>
|
|
// Emily Klassen <https://github.com/forivall>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
type KeyType = string;
|
|
type ValueType = any;
|
|
type RawDict = object;
|
|
|
|
declare function caseless(dict?: RawDict): caseless.Caseless;
|
|
|
|
declare namespace caseless {
|
|
function httpify(resp: object, headers: RawDict): Caseless;
|
|
|
|
interface Caseless {
|
|
set(name: KeyType, value: ValueType, clobber?: boolean): KeyType | false;
|
|
set(dict: RawDict): void;
|
|
has(name: KeyType): KeyType | false;
|
|
get(name: KeyType): ValueType | undefined;
|
|
swap(name: KeyType): void;
|
|
del(name: KeyType): boolean;
|
|
}
|
|
|
|
interface Httpified {
|
|
headers: RawDict;
|
|
setHeader(name: KeyType, value: ValueType, clobber?: boolean): KeyType | false;
|
|
setHeader(dict: RawDict): void;
|
|
hasHeader(name: KeyType): KeyType | false;
|
|
getHeader(name: KeyType): ValueType | undefined;
|
|
removeHeader(name: KeyType): boolean;
|
|
}
|
|
}
|
|
|
|
export = caseless;
|