This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Typertext/lib/Typertext/Http/HttpQueryString.ts

15 lines
358 B
TypeScript

/**
* @namespace Typertext
* @module Http
*/
module Typertext.Http {
/**
* @interface HttpQueryString
*
* Although it appears that this can provide any type of value, implementations
* are allowed to disregard types they are unable to handle.
*/
export interface HttpQueryString {
[index:string]:any
}
}