@wix/design-system
Version:
@wix/design-system
25 lines • 687 B
TypeScript
export default EditableTitle;
declare class EditableTitle extends React.Component<any, any, any> {
constructor(props: any);
state: {
focus: boolean;
value: any;
};
wsrInput: React.RefObject<any>;
componentDidMount(): void;
onChange: (e: any) => void;
showPlaceholder: () => any;
onFocus: () => void;
onKeyDown: (e: any) => void;
render(): React.JSX.Element;
onEnterPressed: () => void;
onValueSubmission: () => void;
}
declare namespace EditableTitle {
let displayName: string;
namespace defaultProps {
let defaultValue: string;
}
}
import React from 'react';
//# sourceMappingURL=EditableTitle.d.ts.map