beaf60de0a
* initial commit, mac implementation * add documentation * convert createThumbnailFromPath to async function * windows impl protoype * add tests * added test * fix * fix test * clean up * update docs * cleaning up code * fix test * retrigger CI * retrigger CI * refactor from app to native_image * windows build * lint * lint * add smart pointers, fix test * change tests and update docs * fix test, remove nolint * add renderer-main process routing to fix tests * lint * thanks sam * thanks sam
7 lines
376 B
TypeScript
7 lines
376 B
TypeScript
// Common modules, please sort alphabetically
|
|
export const commonModuleList: ElectronInternal.ModuleEntry[] = [
|
|
{ name: 'clipboard', loader: () => require('./clipboard') },
|
|
{ name: 'shell', loader: () => require('./shell') },
|
|
// The internal modules, invisible unless you know their names.
|
|
{ name: 'deprecate', loader: () => require('./deprecate'), private: true }
|
|
];
|