docs: fix lint error (#28507)

PR Close #28507
This commit is contained in:
Vani 2019-02-20 20:44:44 -08:00 committed by Miško Hevery
parent 416b0d29b9
commit 60f6d9e733
1 changed files with 4 additions and 4 deletions

View File

@ -14,11 +14,11 @@
* @publicApi
**/
export interface HttpParameterCodec {
encodeKey(key: string):string;
encodeValue(value: string):string;
encodeKey(key: string): string;
encodeValue(value: string): string;
decodeKey(key: string):string;
decodeValue(value: string):string;
decodeKey(key: string): string;
decodeValue(value: string): string;
}
/**