Last active
September 24, 2015 08:02
-
-
Save okunokentaro/387203fd977e3ace9083 to your computer and use it in GitHub Desktop.
string.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'string' { | |
export default stringjs; | |
} | |
declare function stringjs(str: string): stringjs.Instance | |
declare namespace stringjs { | |
export class Instance { | |
s: string; | |
dasherize(): Instance; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment