@ovencord/formatters 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +191 -0
- package/README.md +86 -0
- package/package.json +58 -0
- package/src/escapers.ts +359 -0
- package/src/formatters.ts +827 -0
- package/src/index.ts +10 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './escapers.js';
|
|
2
|
+
export * from './formatters.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* The {@link https://github.com/ovencord/ovencord/blob/main/packages/formatters#readme | @ovencord/formatters} version
|
|
6
|
+
* that you are currently using.
|
|
7
|
+
*
|
|
8
|
+
* @privateRemarks This needs to explicitly be `string` so it is not typed as a "const string" that gets injected by esbuild.
|
|
9
|
+
*/
|
|
10
|
+
export const version = '[VI]{{inject}}[/VI]' as string;
|