playwright/utils/doclint/check_public_api/test/diff-methods/api.ts

18 lines
116 B
TypeScript
Raw Normal View History

2019-11-19 03:18:28 +01:00
class Foo {
start() {
}
stop() {
}
get zzz() {
}
$() {
}
money$$money() {
}
}
2020-02-25 03:17:31 +01:00
export {Foo};