fix doc comments

This commit is contained in:
itsMapleLeaf
2022-08-06 09:52:50 -05:00
parent 1d2620304f
commit aafba45696

View File

@@ -23,13 +23,13 @@ export type ReacordInstance = {
render(content: React.ReactNode): void render(content: React.ReactNode): void
/** Remove this message */ /** Remove this message */
deactivate(): void destroy(): void
/** /**
* Same as destroy, but keeps the message and disables the components on it. * Same as destroy, but keeps the message and disables the components on it.
* This prevents it from listening to user interactions. * This prevents it from listening to user interactions.
*/ */
destroy(): void deactivate(): void
} }
export class ReacordInstancePrivate { export class ReacordInstancePrivate {