mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
22 lines
504 B
JavaScript
22 lines
504 B
JavaScript
'use strict';
|
|
|
|
class TestPluginWithCollidingFunctionEventPropertyError {
|
|
constructor(serverless) {
|
|
serverless.configSchemaHandler.defineProvider('someProvider', {
|
|
function: {
|
|
properties: {
|
|
handler: { type: 'string' },
|
|
},
|
|
},
|
|
});
|
|
|
|
serverless.configSchemaHandler.defineFunctionProperties('someProvider', {
|
|
properties: {
|
|
handler: { type: 'string' },
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = TestPluginWithCollidingFunctionEventPropertyError;
|