lint, tsc
This commit is contained in:
@@ -1,12 +1,6 @@
|
||||
import * as React from "react";
|
||||
import Frame from "./components/Frame";
|
||||
|
||||
type Props = {
|
||||
attrs: {
|
||||
href: string;
|
||||
matches: string[];
|
||||
};
|
||||
};
|
||||
import { EmbedProps as Props } from ".";
|
||||
|
||||
export default class Descript extends React.Component<Props> {
|
||||
static ENABLED = [new RegExp("https?://share.descript.com/view/(\\w+)$")];
|
||||
@@ -17,7 +11,6 @@ export default class Descript extends React.Component<Props> {
|
||||
return (
|
||||
<Frame
|
||||
{...this.props}
|
||||
// @ts-expect-error ts-migrate(2322) FIXME: Type '{ src: string; title: string; width: string;... Remove this comment to see the full error message
|
||||
src={`https://share.descript.com/embed/${shareId}`}
|
||||
title={`Descript (${shareId})`}
|
||||
width="400px"
|
||||
|
||||
Reference in New Issue
Block a user