Skip to content

Commit

Permalink
🧰 Chore | Better docs via comments and improved types (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
zrosenbauer authored Feb 7, 2024
1 parent a0b7324 commit a3f399d
Show file tree
Hide file tree
Showing 14 changed files with 1,177 additions and 670 deletions.
21 changes: 17 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"type-fest": "^4.10.2",
"typescript": "^5.1.6"
}
}
16 changes: 12 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
export { default } from './lib/Document';
export { Document } from './lib/Document';
export { Text } from './lib/Text';
export { default } from './lib/tempo';
export {
/** @deprecated */
TempoDocument as Document,
TempoDocument
} from './lib/TempoDocument';
export {
/** @deprecated */
TempoText as Text,
TempoText
} from './lib/TempoText';
export {
SupportedLanguage,
supportedLanguages,
assertSupportedLanguage,
EmojiAlias,
EmojiUnicode,
assertSupportedEmoji
} from './lib/markdown';
} from './lib/markdown/index';
Loading

0 comments on commit a3f399d

Please sign in to comment.