chore: format all frontend files (#430)

This commit is contained in:
tecvan
2025-07-31 23:15:48 +08:00
committed by GitHub
parent 8b078ff013
commit 6995cec404
8787 changed files with 11975 additions and 10924 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { injectable, inject } from 'inversify';
import {
type CancellationToken,
@@ -38,10 +38,9 @@ export interface AutoSaveResourceOptions {
*/
@injectable()
export abstract class AutoSaveResource<
CHANGE_SET = string,
INFO extends ResourceInfo = ResourceInfo,
>
implements Disposable, Resource<CHANGE_SET, INFO>
CHANGE_SET = string,
INFO extends ResourceInfo = ResourceInfo,
> implements Disposable, Resource<CHANGE_SET, INFO>
{
readonly autoSave: 'on' | 'off' = 'on';

View File

@@ -13,8 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { type AsClass, bindContributionProvider } from '@flowgram-adapter/common';
import {
type AsClass,
bindContributionProvider,
} from '@flowgram-adapter/common';
// import { LabelHandler } from '../label';
import { definePluginCreator } from '../common';

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export {
type ResourcePluginOptions,
createResourcePlugin,

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { injectable, inject, named } from 'inversify';
import { ContributionProvider, Emitter } from '@flowgram-adapter/common';

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { injectable, inject } from 'inversify';
import { type URI } from '../common';

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
type Disposable,
type MaybePromise,

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { isEqual } from 'lodash';
import { Emitter } from '@flowgram-adapter/common';