UNPKG

94 BPlain TextView Raw
1class ExportClass {
2 stringLength(s: string) {
3 return s.length;
4 }
5}
6
7export = ExportClass;