File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
vite-plugin-vue-layouts/src Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* Plugin options.
3
3
*/
4
- export interface Options {
4
+ export interface LayoutOptions {
5
5
/**
6
6
* Relative path to the directory to search for page components.
7
7
* @default 'src/layouts'
@@ -31,9 +31,9 @@ export type FileContainer = {
31
31
path : string
32
32
files : string [ ]
33
33
}
34
- export type UserOptions = Partial < Options >
34
+ export type UserOptions = Partial < LayoutOptions >
35
35
36
- export interface ResolvedOptions extends Options { }
36
+ export interface ResolvedOptions extends LayoutOptions { }
37
37
38
38
export interface clientSideOptions {
39
39
/**
Original file line number Diff line number Diff line change 1
1
import Layouts from '@stacksjs/vite-plugin-vue-layouts' ;
2
- import type { Options as LayoutOptions } from '@stacksjs/vite-plugin-vue-layouts'
2
+ import type { LayoutOptions } from '@stacksjs/vite-plugin-vue-layouts'
3
3
4
4
export function layouts ( options ?: LayoutOptions ) {
5
5
return Layouts ( options )
You can’t perform that action at this time.
0 commit comments