Skip to content

Instantly share code, notes, and snippets.

@jbmilgrom
Last active February 20, 2019 21:09
Show Gist options
  • Save jbmilgrom/d330a26aa8a5bd4f507e3d55e46d0714 to your computer and use it in GitHub Desktop.
Save jbmilgrom/d330a26aa8a5bd4f507e3d55e46d0714 to your computer and use it in GitHub Desktop.
class BuyingFlow extends BasePage {
...
}
class BuyingFlow implements BasePageI {
load() {}
waitForInitloaded() {}
}
const BuyingFlow: BasePageI = {
load() {},
waitForInitloaded() {},
};
const BuyingFlow = {
load() {},
waitForInitloaded() {},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment