d3b92593d5
- Create Axios-based API client with sources, jobs, and dashboard endpoints - Add responsive Layout component with navigation sidebar - Set up React Router with Dashboard, Backups, and Settings routes - Configure TanStack Query provider with default options - Use lucide-react for navigation icons
12 lines
411 B
TypeScript
12 lines
411 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import type { NewPlugin } from '../types';
|
|
export declare const test: NewPlugin['test'];
|
|
export declare const serialize: NewPlugin['serialize'];
|
|
declare const plugin: NewPlugin;
|
|
export default plugin;
|