blob: 6752b46b8b917d096b205f631ecd817e9c218cbd (
plain)
1
2
3
4
5
6
7
|
import { CollectionFreeFormView } from './CollectionFreeFormView';
export class TutorialController {
public static startTutorial(kind: 'links' | 'pins' | 'presentation') {
CollectionFreeFormView.showTutorial(kind);
}
}
|