1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 15:04:25 +02:00
Files
php-flarum/js/dist-typings/forum/components/LogInButton.d.ts
flarum-bot 1ab35d89ac Bundled output for commit 3cf19dd2ea
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-08-22 19:40:36 +00:00

14 lines
385 B
TypeScript

/**
* The `LogInButton` component displays a social login button which will open
* a popup window containing the specified path.
*
* ### Attrs
*
* - `path`
*/
export default class LogInButton extends Button<import("../../common/components/Button").IButtonAttrs> {
static initAttrs(attrs: any): void;
constructor();
}
import Button from "../../common/components/Button";