tldraw/apps/dotcom/decs.d.ts
Steve Ruiz d7002057d7
unbrivate, dot com in (#2475)
This PR moves the tldraw.com app into the public repo.

### Change Type

- [x] `internal` — Any other changes that don't affect the published
package[^2]

---------

Co-authored-by: Dan Groshev <git@dgroshev.com>
Co-authored-by: alex <alex@dytry.ch>
2024-01-16 14:38:05 +00:00

17 lines
520 B
TypeScript

declare namespace React {
interface HTMLAttributes {
/**
* Indicates the browser should ignore the element and its contents in terms of interaction.
* This is a boolean attribute but isn't properly supported by react yet - pass "" to enable
* it, or undefined to disable it.
*
* https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inert
*/
inert?: ''
}
}
declare module '*.svg' {
const content: React.FunctionComponent<React.SVGAttributes<SVGElement>>
export default content
}