mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-17 15:23:00 +00:00
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import { PureComponent } from 'react';
|
|
import './global.scss';
|
|
export default class Skeleton extends PureComponent {
|
|
static displayName: string;
|
|
constructor(props: any);
|
|
componentWillUnmount(): void;
|
|
render(): JSX.Element;
|
|
}
|